home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 2
/
Gold Medal Software Volume 2 (Gold Medal) (1994).iso
/
windows
/
comms
/
mlk104a.arj
/
ATLWIN.MSL
next >
Wrap
Text File
|
1991-12-30
|
493b
|
18 lines
' ***************************************************
' * Atlanta Windows RBBS Logon Script *
' ***************************************************
' Note: ^M means Enter key
first$ = "firstname^M"
last$ = "lastname^M"
pw$ = "password^M"
MPRINT "Atlanta Windows Logon Script"
WAITFOR "What is your FIRST name? "
RPRINT first$
WAITFOR "What is your LAST name? "
RPRINT last$
WAITFOR "Enter Password (dots echo)? "
RPRINT pw$
MPRINT "Sign-on Complete..."
END